home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 6_15.lha / 6_15 / makefile < prev    next >
Makefile  |  1993-08-08  |  416b  |  22 lines

  1. C= CC -I. -I../../CC
  2. FLAGS=
  3.  
  4. ll: tst
  5.  
  6. st: makefile tst.c    \
  7.     6_15h1.h 6_15h2.h 6_15h3.h 6_15h4.h 6_15h5.h \
  8.     6_15h6.h 6_15h7.h 6_15h8.h 6_15h9.h 6_15h10.h \
  9.     6_15h11.h 6_15h12.h 6_15h13.h 6_15h14.h 6_15h15.h \
  10.     6_15h16.h 6_15h17.h 6_15h18.h 6_15h19.h 6_15h20.h \
  11.     6_15h21.h
  12. $(CC) $(CFLAGS) tst.c -o tst
  13.  
  14. MP= tst.cmp
  15. UT= tst.out
  16.  
  17. st.out: tst ;    tst > tst.out
  18.  
  19. est: all $(OUT) $(CMP)
  20. cmp tst.out tst.cmp
  21. echo tests done
  22.